local migration since this does not seem to work correctly (see tests in
xm test suite). If no vTPM has been attached, the local migration
proceeds as usual.
Signed-off-by: Stefan Berger <stefanb@us.ibm.com>
function vtpm_migrate() {
echo "Error: vTPM migration accross machines not implemented."
}
+ function vtpm_migrate_local() {
+ echo "Error: local vTPM migration not supported"
+ }
function vtpm_migrate_recover() {
true
}
local res=$(vtpm_isLocalAddress $1)
if [ "$res" == "0" ]; then
vtpm_migrate $1 $2 $3
+ else
+ vtpm_migrate_local
fi
}
echo "Error: Recovery not supported yet"
}
+function vtpm_migrate_local() {
+ echo "Error: local vTPM migration not supported"
+}